int x = 1;
println(x); // Prints "1" to the console
x++; // Equivalent to x = x + 1
println(x); // Prints "2" to the console

int y = 1;
println(y); // Prints "1" to the console
y--; // Equivalent to y = y - 1
println(y); // Prints "0" to the console